(C) 1996 AROS - The Amiga Replacement OS
NAME
#include <stdlib.h>
long labs()
SYNOPSIS
long j
FUNCTION
Compute the absolute value of j.
INPUTS
j
A signed long
RESULT
The absolute value of j.
NOTES
EXAMPLE
// returns 1 labs (1L); // returns 1 labs (-1L);
BUGS
SEE ALSO
abs()
, fabs()
INTERNALS
HISTORY
12.12.1996 aros
New functions